﻿2026-08-04T16:24:00.3364102Z ##[group]Run set -euo pipefail
2026-08-04T16:24:00.3364383Z [36;1mset -euo pipefail[0m
2026-08-04T16:24:00.3364584Z [36;1mPIN=0c95435[0m
2026-08-04T16:24:00.3364778Z [36;1mCACHE="$HOME/spt-n1-oldbroker"[0m
2026-08-04T16:24:00.3365008Z [36;1mBIN="$CACHE/target/debug/spt"[0m
2026-08-04T16:24:00.3365314Z [36;1m# Self-healing cache: rebuild the pin only when it moves. Clone OUTSIDE[0m
2026-08-04T16:24:00.3365867Z [36;1m# the workspace (a clone inside gets adopted by the cargo workspace).[0m
2026-08-04T16:24:00.3366283Z [36;1mif [ ! -x "$BIN" ] || [ "$(cat "$CACHE/.builtpin" 2>/dev/null || true)" != "$PIN" ]; then[0m
2026-08-04T16:24:00.3366616Z [36;1m  rm -rf "$CACHE"[0m
2026-08-04T16:24:00.3366840Z [36;1m  git clone "$GITHUB_WORKSPACE" "$CACHE"[0m
2026-08-04T16:24:00.3367087Z [36;1m  git -C "$CACHE" checkout "$PIN"[0m
2026-08-04T16:24:00.3367417Z [36;1m  # CARGO_INCREMENTAL=0 — THE one-shot build in this workflow (releases#103:[0m
2026-08-04T16:24:00.3367814Z [36;1m  # -29.8% wall, -5.65 GB of target, n=3, slowest-OFF beat fastest-ON). The[0m
2026-08-04T16:24:00.3368244Z [36;1m  # finding is scoped to COLD one-shot builds and this is the only CI site that[0m
2026-08-04T16:24:00.3368657Z [36;1m  # is one: the cache is `rm -rf`'d and rebuilt from scratch when the pin moves,[0m
2026-08-04T16:24:00.3369164Z [36;1m  # and between pin moves it is consumed as a BINARY and never recompiled — so[0m
2026-08-04T16:24:00.3369579Z [36;1m  # the incremental state it would write is never read by anything, ever. Every[0m
2026-08-04T16:24:00.3370003Z [36;1m  # other cargo invocation in this workflow builds into the runner's PERSISTENT[0m
2026-08-04T16:24:00.3370400Z [36;1m  # `_work` target, where incremental is the mechanism that makes the next run[0m
2026-08-04T16:24:00.3370738Z [36;1m  # cheap; those are deliberately left alone.[0m
2026-08-04T16:24:00.3371071Z [36;1m  CARGO_INCREMENTAL=0 bash .github/bench/wrap.sh n1-oldbroker-build -- \[0m
2026-08-04T16:24:00.3371467Z [36;1m    cargo build --manifest-path "$CACHE/Cargo.toml" -p spt --bin spt[0m
2026-08-04T16:24:00.3371786Z [36;1m  echo "$PIN" > "$CACHE/.builtpin"[0m
2026-08-04T16:24:00.3372010Z [36;1mfi[0m
2026-08-04T16:24:00.3372257Z [36;1mSPT_N1_OLD_BROKER="$BIN" bash .github/bench/wrap.sh n1-pairing -- \[0m
2026-08-04T16:24:00.3372601Z [36;1m  cargo test -p spt --test n1_pairing -- --nocapture[0m
2026-08-04T16:24:00.3386280Z shell: /usr/bin/bash --noprofile --norc -e -o pipefail {0}
2026-08-04T16:24:00.3386636Z env:
2026-08-04T16:24:00.3386859Z   RUSTFLAGS: -C link-arg=-fuse-ld=mold
2026-08-04T16:24:00.3387297Z   SPT_CI_TEST_TMP: /home/reavus/actions-runner/_work/_temp/spt-test-tmp-30928816784-1-vhTWeT
2026-08-04T16:24:00.3387850Z   TEMP: /home/reavus/actions-runner/_work/_temp/spt-test-tmp-30928816784-1-vhTWeT
2026-08-04T16:24:00.3388723Z   TMP: /home/reavus/actions-runner/_work/_temp/spt-test-tmp-30928816784-1-vhTWeT
2026-08-04T16:24:00.3389350Z   TMPDIR: /home/reavus/actions-runner/_work/_temp/spt-test-tmp-30928816784-1-vhTWeT
2026-08-04T16:24:00.3389745Z ##[endgroup]
2026-08-04T16:24:01.0334143Z    Compiling proc-macro2 v1.0.106
2026-08-04T16:24:01.0334655Z    Compiling quote v1.0.45
2026-08-04T16:24:01.0334942Z    Compiling unicode-ident v1.0.24
2026-08-04T16:24:01.0335220Z    Compiling libc v0.2.186
2026-08-04T16:24:01.0335456Z    Compiling serde_core v1.0.228
2026-08-04T16:24:01.0335752Z    Compiling cfg-if v1.0.4
2026-08-04T16:24:01.0360769Z    Compiling serde v1.0.228
2026-08-04T16:24:01.0400229Z    Compiling typenum v1.20.1
2026-08-04T16:24:01.0416696Z    Compiling log v0.4.32
2026-08-04T16:24:01.0430280Z    Compiling portable-atomic v1.13.1
2026-08-04T16:24:01.0446155Z    Compiling pin-project-lite v0.2.17
2026-08-04T16:24:01.0446662Z    Compiling version_check v0.9.5
2026-08-04T16:24:01.0507549Z    Compiling memchr v2.8.1
2026-08-04T16:24:01.0508445Z    Compiling critical-section v1.2.0
2026-08-04T16:24:01.0674886Z    Compiling find-msvc-tools v0.1.9
2026-08-04T16:24:01.0945791Z    Compiling shlex v2.0.1
2026-08-04T16:24:01.1347390Z    Compiling subtle v2.6.1
2026-08-04T16:24:01.1485364Z    Compiling bytes v1.11.1
2026-08-04T16:24:01.1693455Z    Compiling futures-core v0.3.32
2026-08-04T16:24:01.3067115Z    Compiling smallvec v1.15.1
2026-08-04T16:24:01.3137693Z    Compiling equivalent v1.0.2
2026-08-04T16:24:01.3399120Z    Compiling itoa v1.0.18
2026-08-04T16:24:01.3834727Z    Compiling semver v1.0.28
2026-08-04T16:24:01.3885309Z    Compiling stable_deref_trait v1.2.1
2026-08-04T16:24:01.3910568Z    Compiling slab v0.4.12
2026-08-04T16:24:01.3912369Z    Compiling futures-io v0.3.32
2026-08-04T16:24:01.3980517Z    Compiling futures-sink v0.3.32
2026-08-04T16:24:01.4285310Z    Compiling generic-array v0.14.7
2026-08-04T16:24:01.4630860Z    Compiling futures-task v0.3.32
2026-08-04T16:24:01.4908410Z    Compiling futures-channel v0.3.32
2026-08-04T16:24:01.5550030Z    Compiling rand_core v0.10.1
2026-08-04T16:24:01.5581309Z    Compiling bitflags v2.12.1
2026-08-04T16:24:01.5765486Z    Compiling rustversion v1.0.22
2026-08-04T16:24:01.5950319Z    Compiling getrandom v0.4.2
2026-08-04T16:24:01.6167387Z    Compiling hashbrown v0.17.1
2026-08-04T16:24:01.6490795Z    Compiling cpufeatures v0.2.17
2026-08-04T16:24:01.7047944Z    Compiling fnv v1.0.7
2026-08-04T16:24:01.7205319Z    Compiling rustc_version v0.4.1
2026-08-04T16:24:01.7310520Z    Compiling strsim v0.11.1
2026-08-04T16:24:01.7607576Z    Compiling cfg_aliases v0.2.1
2026-08-04T16:24:01.8020534Z    Compiling litemap v0.8.2
2026-08-04T16:24:01.8112160Z    Compiling writeable v0.6.3
2026-08-04T16:24:01.8195297Z    Compiling fs_extra v1.3.0
2026-08-04T16:24:01.8380775Z    Compiling icu_normalizer_data v2.2.0
2026-08-04T16:24:01.8517969Z    Compiling icu_properties_data v2.2.0
2026-08-04T16:24:02.0422263Z    Compiling ident_case v1.0.1
2026-08-04T16:24:02.0482813Z    Compiling dunce v1.0.5
2026-08-04T16:24:02.0512127Z    Compiling utf8_iter v1.0.4
2026-08-04T16:24:02.1290673Z    Compiling percent-encoding v2.3.2
2026-08-04T16:24:02.1510320Z    Compiling autocfg v1.5.1
2026-08-04T16:24:02.1580750Z    Compiling http v1.4.1
2026-08-04T16:24:02.1981329Z    Compiling thiserror v2.0.18
2026-08-04T16:24:02.2072150Z    Compiling cpufeatures v0.3.0
2026-08-04T16:24:02.2597040Z    Compiling unicode-segmentation v1.13.3
2026-08-04T16:24:02.2720724Z    Compiling aws-lc-rs v1.17.0
2026-08-04T16:24:02.3078594Z    Compiling scopeguard v1.2.0
2026-08-04T16:24:02.3175842Z    Compiling form_urlencoded v1.2.2
2026-08-04T16:24:02.3510675Z    Compiling untrusted v0.9.0
2026-08-04T16:24:02.4017686Z    Compiling syn v2.0.117
2026-08-04T16:24:02.4752578Z    Compiling indexmap v2.14.0
2026-08-04T16:24:02.4800951Z    Compiling hybrid-array v0.4.12
2026-08-04T16:24:02.5111035Z    Compiling lock_api v0.4.14
2026-08-04T16:24:02.5220717Z    Compiling heck v0.5.0
2026-08-04T16:24:02.5383762Z    Compiling rustls v0.23.40
2026-08-04T16:24:02.5624516Z    Compiling unicode-xid v0.2.6
2026-08-04T16:24:02.5917595Z    Compiling atomic-waker v1.1.2
2026-08-04T16:24:02.6690745Z    Compiling const-oid v0.10.2
2026-08-04T16:24:02.6944783Z    Compiling anyhow v1.0.102
2026-08-04T16:24:02.7031639Z    Compiling httparse v1.10.1
2026-08-04T16:24:02.7111659Z    Compiling zerocopy v0.8.50
2026-08-04T16:24:02.7310732Z    Compiling parking_lot_core v0.9.12
2026-08-04T16:24:02.7990512Z    Compiling jobserver v0.1.34
2026-08-04T16:24:02.8140591Z    Compiling fastrand v2.4.1
2026-08-04T16:24:02.8653571Z    Compiling convert_case v0.10.0
2026-08-04T16:24:02.9094654Z    Compiling paste v1.0.15
2026-08-04T16:24:02.9560519Z    Compiling num-traits v0.2.19
2026-08-04T16:24:02.9777170Z    Compiling curve25519-dalek v4.1.3
2026-08-04T16:24:03.0690642Z    Compiling ahash v0.8.12
2026-08-04T16:24:03.0760395Z    Compiling powerfmt v0.2.0
2026-08-04T16:24:03.1411730Z    Compiling either v1.16.0
2026-08-04T16:24:03.1800847Z    Compiling cc v1.2.63
2026-08-04T16:24:03.1900363Z    Compiling crypto-common v0.1.7
2026-08-04T16:24:03.2400622Z    Compiling block-buffer v0.10.4
2026-08-04T16:24:03.2600536Z    Compiling crypto-common v0.2.2
2026-08-04T16:24:03.2791018Z    Compiling block-buffer v0.12.0
2026-08-04T16:24:03.2943657Z    Compiling inout v0.2.2
2026-08-04T16:24:03.3050561Z    Compiling http-body v1.0.1
2026-08-04T16:24:03.3270687Z    Compiling base64ct v1.8.3
2026-08-04T16:24:03.3480725Z    Compiling digest v0.10.7
2026-08-04T16:24:03.4178270Z    Compiling deranged v0.5.8
2026-08-04T16:24:03.4708053Z    Compiling try-lock v0.2.5
2026-08-04T16:24:03.4814486Z    Compiling vcpkg v0.2.15
2026-08-04T16:24:03.5624596Z    Compiling num-conv v0.2.2
2026-08-04T16:24:03.6050717Z    Compiling mio v1.2.1
2026-08-04T16:24:03.6220726Z    Compiling socket2 v0.6.4
2026-08-04T16:24:03.7001274Z    Compiling getrandom v0.2.17
2026-08-04T16:24:03.7331152Z    Compiling pem-rfc7468 v1.0.0
2026-08-04T16:24:03.8711861Z    Compiling time-core v0.1.8
2026-08-04T16:24:03.9410508Z    Compiling rand_core v0.6.4
2026-08-04T16:24:03.9660732Z    Compiling uuid v1.23.2
2026-08-04T16:24:03.9723050Z    Compiling tinyvec_macros v0.1.1
2026-08-04T16:24:04.0101252Z    Compiling pkg-config v0.3.33
2026-08-04T16:24:04.0340842Z    Compiling base64 v0.22.1
2026-08-04T16:24:04.0553706Z    Compiling data-encoding v2.11.0
2026-08-04T16:24:04.0740667Z    Compiling zmij v1.0.21
2026-08-04T16:24:04.1850341Z    Compiling tower-service v0.3.3
2026-08-04T16:24:04.2890406Z    Compiling tinyvec v1.11.0
2026-08-04T16:24:04.3221014Z    Compiling cipher v0.5.2
2026-08-04T16:24:04.4015150Z    Compiling parking_lot v0.12.5
2026-08-04T16:24:04.4705114Z    Compiling cmake v0.1.58
2026-08-04T16:24:04.5007863Z    Compiling sha2 v0.10.9
2026-08-04T16:24:04.5220586Z    Compiling want v0.3.1
2026-08-04T16:24:04.5869666Z    Compiling chacha20 v0.10.0
2026-08-04T16:24:04.6014197Z    Compiling inout v0.1.4
2026-08-04T16:24:04.6085058Z    Compiling spt-procident v0.53.0 (/home/reavus/actions-runner/_work/spt-bs-core/spt-bs-core/crates/spt-procident)
2026-08-04T16:24:04.6650665Z    Compiling vergen-lib v9.1.0
2026-08-04T16:24:04.7130699Z    Compiling n0-future v0.3.2
2026-08-04T16:24:04.7652932Z    Compiling signature v2.2.0
2026-08-04T16:24:04.7834912Z    Compiling httpdate v1.0.3
2026-08-04T16:24:04.8131768Z    Compiling winnow v1.0.3
2026-08-04T16:24:04.9010614Z    Compiling serde_json v1.0.150
2026-08-04T16:24:04.9140410Z    Compiling crossbeam-utils v0.8.21
2026-08-04T16:24:04.9652085Z    Compiling rand v0.10.1
2026-08-04T16:24:04.9763171Z    Compiling parking v2.2.1
2026-08-04T16:24:04.9894687Z    Compiling spin v0.10.0
2026-08-04T16:24:05.0000652Z    Compiling diatomic-waker v0.2.3
2026-08-04T16:24:05.0700166Z    Compiling cordyceps v0.3.4
2026-08-04T16:24:05.1060733Z    Compiling futures-lite v2.6.1
2026-08-04T16:24:05.1398243Z    Compiling ed25519 v2.2.3
2026-08-04T16:24:05.1611587Z    Compiling spt-poolguard v0.53.0 (/home/reavus/actions-runner/_work/spt-bs-core/spt-bs-core/crates/spt-poolguard)
2026-08-04T16:24:05.1690416Z    Compiling cipher v0.4.4
2026-08-04T16:24:05.1870753Z    Compiling digest v0.11.3
2026-08-04T16:24:05.1948018Z    Compiling netlink-packet-core v0.8.1
2026-08-04T16:24:05.2051078Z    Compiling universal-hash v0.5.1
2026-08-04T16:24:05.3490466Z    Compiling vergen-lib v0.1.6
2026-08-04T16:24:05.3640094Z    Compiling futures-buffered v0.2.13
2026-08-04T16:24:05.3741221Z    Compiling vergen v9.1.0
2026-08-04T16:24:05.3995031Z    Compiling curve25519-dalek v5.0.0-pre.6
2026-08-04T16:24:05.4057152Z    Compiling heapless v0.7.17
2026-08-04T16:24:05.4078230Z    Compiling noq-udp v0.10.0
2026-08-04T16:24:05.4914262Z    Compiling aws-lc-sys v0.41.0
2026-08-04T16:24:05.5417803Z    Compiling ring v0.17.14
2026-08-04T16:24:05.5526376Z    Compiling libsqlite3-sys v0.30.1
2026-08-04T16:24:05.5763147Z    Compiling aho-corasick v1.1.4
2026-08-04T16:24:05.5945966Z    Compiling sync_wrapper v1.0.2
2026-08-04T16:24:05.6429751Z    Compiling opaque-debug v0.3.1
2026-08-04T16:24:05.6432498Z    Compiling allocator-api2 v0.2.21
2026-08-04T16:24:05.6495211Z    Compiling byteorder v1.5.0
2026-08-04T16:24:05.6992553Z    Compiling regex-syntax v0.8.10
2026-08-04T16:24:05.7094074Z    Compiling toml_datetime v1.1.1+spec-1.1.0
2026-08-04T16:24:05.7862357Z    Compiling polyval v0.6.2
2026-08-04T16:24:05.8700824Z    Compiling hash32 v0.2.1
2026-08-04T16:24:05.9330310Z    Compiling spt-store v0.53.0 (/home/reavus/actions-runner/_work/spt-bs-core/spt-bs-core/crates/spt-store)
2026-08-04T16:24:06.0451604Z    Compiling spin v0.9.8
2026-08-04T16:24:06.0651855Z    Compiling vergen-gitcl v1.0.8
2026-08-04T16:24:06.0740687Z    Compiling signature v3.0.0
2026-08-04T16:24:06.0810891Z    Compiling fallible-streaming-iterator v0.1.9
2026-08-04T16:24:06.1963145Z    Compiling fallible-iterator v0.3.0
2026-08-04T16:24:06.2530439Z    Compiling num_threads v0.1.7
2026-08-04T16:24:06.2773688Z    Compiling tower-layer v0.3.3
2026-08-04T16:24:06.3048606Z    Compiling ryu v1.0.23
2026-08-04T16:24:06.3732386Z    Compiling time v0.3.47
2026-08-04T16:24:06.4340741Z    Compiling ghash v0.5.1
2026-08-04T16:24:06.4410805Z    Compiling ctr v0.9.2
2026-08-04T16:24:06.5261752Z    Compiling toml_parser v1.1.2+spec-1.1.0
2026-08-04T16:24:06.5430947Z    Compiling aes v0.8.4
2026-08-04T16:24:06.6030870Z    Compiling sha2 v0.11.0-rc.5
2026-08-04T16:24:06.6886550Z    Compiling fs2 v0.4.3
2026-08-04T16:24:06.7445301Z    Compiling http-body-util v0.1.3
2026-08-04T16:24:06.8341003Z    Compiling aead v0.5.2
2026-08-04T16:24:06.9511925Z    Compiling rustix v1.1.4
2026-08-04T16:24:07.0351004Z    Compiling openssl-probe v0.2.1
2026-08-04T16:24:07.0819718Z    Compiling utf8parse v0.2.2
2026-08-04T16:24:07.1667680Z    Compiling arrayvec v0.7.6
2026-08-04T16:24:07.2120162Z    Compiling toml_edit v0.25.12+spec-1.1.0
2026-08-04T16:24:07.2350930Z    Compiling aes-gcm v0.10.3
2026-08-04T16:24:07.3781737Z    Compiling crossbeam-channel v0.5.15
2026-08-04T16:24:07.3937352Z    Compiling crossbeam-epoch v0.9.18
2026-08-04T16:24:07.4231914Z    Compiling netlink-packet-route v0.29.0
2026-08-04T16:24:07.4283316Z    Compiling blake3 v1.8.5
2026-08-04T16:24:07.4987903Z    Compiling synstructure v0.13.2
2026-08-04T16:24:07.7520474Z    Compiling darling_core v0.20.11
2026-08-04T16:24:07.8100833Z    Compiling memoffset v0.6.5
2026-08-04T16:24:07.9110488Z    Compiling acto v0.8.2
2026-08-04T16:24:07.9542558Z    Compiling noq v0.18.0
2026-08-04T16:24:08.0369224Z    Compiling netwatch v0.16.0
2026-08-04T16:24:08.1139875Z    Compiling proc-macro-crate v3.5.0
2026-08-04T16:24:08.1749274Z    Compiling tagptr v0.2.0
2026-08-04T16:24:08.2702418Z    Compiling ref-cast v1.0.25
2026-08-04T16:24:08.2820793Z    Compiling linux-raw-sys v0.12.1
2026-08-04T16:24:08.2890659Z    Compiling identity-hash v0.1.0
2026-08-04T16:24:08.3507701Z    Compiling regex-automata v0.4.14
2026-08-04T16:24:08.3782446Z    Compiling sorted-index-buffer v0.2.1
2026-08-04T16:24:08.4183482Z    Compiling mac-addr v0.3.0
2026-08-04T16:24:08.5146614Z    Compiling rustc-hash v2.1.2
2026-08-04T16:24:08.5440507Z    Compiling xml-rs v0.8.28
2026-08-04T16:24:08.6122936Z    Compiling thiserror v1.0.69
2026-08-04T16:24:08.6200673Z    Compiling foldhash v0.2.0
2026-08-04T16:24:08.6308497Z    Compiling lru-slab v0.1.2
2026-08-04T16:24:08.7435368Z    Compiling hashbrown v0.16.1
2026-08-04T16:24:08.8604810Z    Compiling serde_derive_internals v0.29.1
2026-08-04T16:24:08.8750830Z    Compiling netlink-packet-route v0.30.0
2026-08-04T16:24:09.2143470Z    Compiling termios v0.2.2
2026-08-04T16:24:09.3480084Z    Compiling serial-core v0.4.0
2026-08-04T16:24:09.4010978Z    Compiling xmltree v0.10.3
2026-08-04T16:24:09.5268701Z    Compiling serde_derive v1.0.228
2026-08-04T16:24:09.5667604Z    Compiling zeroize_derive v1.4.3
2026-08-04T16:24:09.6240755Z    Compiling tokio-macros v2.7.0
2026-08-04T16:24:09.6497481Z    Compiling zerofrom-derive v0.1.7
2026-08-04T16:24:09.7501681Z    Compiling futures-macro v0.3.32
2026-08-04T16:24:10.0601067Z    Compiling yoke-derive v0.8.2
2026-08-04T16:24:10.1360530Z    Compiling zeroize v1.8.2
2026-08-04T16:24:10.2330583Z    Compiling zerovec-derive v0.11.3
2026-08-04T16:24:10.2804530Z    Compiling displaydoc v0.2.6
2026-08-04T16:24:10.2998256Z    Compiling tracing-attributes v0.1.31
2026-08-04T16:24:10.4077540Z    Compiling tokio v1.52.3
2026-08-04T16:24:10.7247261Z    Compiling futures-util v0.3.32
2026-08-04T16:24:11.0761046Z    Compiling zerofrom v0.1.8
2026-08-04T16:24:11.1493659Z    Compiling rustls-pki-types v1.14.1
2026-08-04T16:24:11.2151066Z    Compiling thiserror-impl v2.0.18
2026-08-04T16:24:11.2706116Z    Compiling curve25519-dalek-derive v0.1.1
2026-08-04T16:24:11.4617373Z    Compiling yoke v0.8.3
2026-08-04T16:24:11.5560448Z    Compiling darling_macro v0.20.11
2026-08-04T16:24:11.7095200Z    Compiling zerovec v0.11.6
2026-08-04T16:24:11.8922033Z    Compiling zerotrie v0.2.4
2026-08-04T16:24:11.9368315Z    Compiling darling v0.20.11
2026-08-04T16:24:11.9671402Z    Compiling derive_more-impl v2.1.1
2026-08-04T16:24:11.9961153Z    Compiling derive_builder_core v0.20.2
2026-08-04T16:24:12.0161371Z    Compiling n0-error-macros v0.1.3
2026-08-04T16:24:12.2906681Z    Compiling spez v0.1.2
2026-08-04T16:24:12.5980843Z    Compiling tinystr v0.8.3
2026-08-04T16:24:12.6576920Z    Compiling potential_utf v0.1.5
2026-08-04T16:24:12.8016564Z    Compiling icu_collections v2.2.0
2026-08-04T16:24:12.8653497Z    Compiling icu_locale_core v2.2.0
2026-08-04T16:24:13.0980383Z    Compiling n0-error v0.1.3
2026-08-04T16:24:13.1880487Z    Compiling der v0.8.0-rc.10
2026-08-04T16:24:13.4320876Z    Compiling derive_builder_macro v0.20.2
2026-08-04T16:24:13.5224025Z    Compiling pin-project-internal v1.1.13
2026-08-04T16:24:13.5813042Z    Compiling cobs v0.3.0
2026-08-04T16:24:13.7350636Z    Compiling derive_builder v0.20.2
2026-08-04T16:24:13.8060531Z    Compiling regex v1.12.3
2026-08-04T16:24:14.2790583Z    Compiling icu_provider v2.2.0
2026-08-04T16:24:14.3841774Z    Compiling ed25519-dalek v2.2.0
2026-08-04T16:24:14.5244605Z    Compiling postcard-derive v0.2.2
2026-08-04T16:24:14.6442899Z    Compiling icu_normalizer v2.2.0
2026-08-04T16:24:14.7435718Z    Compiling icu_properties v2.2.0
2026-08-04T16:24:14.7545805Z    Compiling ipnet v2.12.0
2026-08-04T16:24:14.8638512Z    Compiling spki v0.8.0-rc.4
2026-08-04T16:24:14.8881327Z    Compiling futures-executor v0.3.32
2026-08-04T16:24:14.9776938Z    Compiling pin-project v1.1.13
2026-08-04T16:24:15.0721058Z    Compiling futures v0.3.32
2026-08-04T16:24:15.1430804Z    Compiling pkcs8 v0.11.0-rc.10
2026-08-04T16:24:15.1620968Z    Compiling spt-proto v0.53.0 (/home/reavus/actions-runner/_work/spt-bs-core/spt-bs-core/crates/spt-proto)
2026-08-04T16:24:15.2752775Z    Compiling prefix-trie v0.8.4
2026-08-04T16:24:15.3070618Z    Compiling ed25519 v3.0.0-rc.4
2026-08-04T16:24:15.4555163Z    Compiling data-encoding-macro-internal v0.1.18
2026-08-04T16:24:15.5840188Z    Compiling once_cell v1.21.4
2026-08-04T16:24:15.6300606Z    Compiling rustls-native-certs v0.8.4
2026-08-04T16:24:15.7752845Z    Compiling tracing-core v0.1.36
2026-08-04T16:24:15.8590476Z    Compiling data-encoding-macro v0.1.20
2026-08-04T16:24:15.9092775Z    Compiling strum_macros v0.28.0
2026-08-04T16:24:15.9573385Z    Compiling postcard v1.1.3
2026-08-04T16:24:15.9963251Z    Compiling hashbrown v0.14.5
2026-08-04T16:24:16.0794811Z    Compiling num_enum_derive v0.7.6
2026-08-04T16:24:16.1460574Z    Compiling enum-assoc v1.3.0
2026-08-04T16:24:16.3650527Z    Compiling tracing v0.1.44
2026-08-04T16:24:16.4940699Z    Compiling tokio-util v0.7.18
2026-08-04T16:24:16.7020623Z    Compiling idna_adapter v1.2.2
2026-08-04T16:24:16.7400787Z    Compiling netlink-sys v0.8.8
2026-08-04T16:24:16.7600157Z    Compiling derive_more v2.1.1
2026-08-04T16:24:16.7838045Z    Compiling ed25519-dalek v3.0.0-pre.6
2026-08-04T16:24:16.8160806Z    Compiling idna v1.1.0
2026-08-04T16:24:16.8912610Z    Compiling hashlink v0.9.1
2026-08-04T16:24:16.9650588Z    Compiling tower v0.5.3
2026-08-04T16:24:16.9781111Z    Compiling async-trait v0.1.89
2026-08-04T16:24:17.1086441Z    Compiling iroh-metrics-derive v0.4.1
2026-08-04T16:24:17.2004459Z    Compiling netdev v0.42.0
2026-08-04T16:24:17.2599969Z    Compiling url v2.5.8
2026-08-04T16:24:17.2602365Z    Compiling num_enum v0.7.6
2026-08-04T16:24:17.2791039Z    Compiling netlink-proto v0.12.0
2026-08-04T16:24:17.2950095Z    Compiling iroh-relay v0.98.0
2026-08-04T16:24:17.3830806Z    Compiling moka v0.12.15
2026-08-04T16:24:17.4890313Z    Compiling rusqlite v0.32.1
2026-08-04T16:24:17.5778511Z    Compiling h2 v0.4.14
2026-08-04T16:24:17.6420646Z    Compiling iroh-metrics v0.38.3
2026-08-04T16:24:17.7320278Z    Compiling n0-watcher v0.6.1
2026-08-04T16:24:17.7390432Z    Compiling tokio-stream v0.1.18
2026-08-04T16:24:18.0020959Z    Compiling serde_spanned v0.6.9
2026-08-04T16:24:18.0910422Z    Compiling toml_datetime v0.6.11
2026-08-04T16:24:18.1475020Z    Compiling hickory-proto v0.26.0-beta.4
2026-08-04T16:24:18.1869957Z    Compiling tower-http v0.6.11
2026-08-04T16:24:18.2072588Z    Compiling iroh-base v0.98.0
2026-08-04T16:24:18.4040787Z    Compiling attohttpc v0.30.1
2026-08-04T16:24:18.4330721Z    Compiling ref-cast-impl v1.0.25
2026-08-04T16:24:18.4397898Z    Compiling thiserror-impl v1.0.69
2026-08-04T16:24:18.7110744Z    Compiling errno v0.3.14
2026-08-04T16:24:18.7465845Z    Compiling ioctl-rs v0.1.6
2026-08-04T16:24:18.8716258Z    Compiling simple-dns v0.9.3
2026-08-04T16:24:18.8779153Z    Compiling simdutf8 v0.1.5
2026-08-04T16:24:18.9022949Z    Compiling strum v0.28.0
2026-08-04T16:24:18.9711607Z    Compiling sha1_smol v1.0.1
2026-08-04T16:24:18.9890903Z    Compiling signal-hook v0.3.18
2026-08-04T16:24:18.9986736Z    Compiling toml_write v0.1.2
2026-08-04T16:24:19.0008234Z    Compiling resolv-conf v0.7.6
2026-08-04T16:24:19.0271162Z    Compiling smol_str v0.1.24
2026-08-04T16:24:19.1480517Z    Compiling winnow v0.7.15
2026-08-04T16:24:19.1960843Z    Compiling arrayref v0.3.9
2026-08-04T16:24:19.2343274Z    Compiling constant_time_eq v0.4.2
2026-08-04T16:24:19.2927247Z    Compiling signal-hook-registry v1.4.8
2026-08-04T16:24:19.3030681Z    Compiling serial-unix v0.4.0
2026-08-04T16:24:19.4850665Z    Compiling webpki-roots v1.0.7
2026-08-04T16:24:19.5178104Z    Compiling schemars_derive v1.2.1
2026-08-04T16:24:19.5690530Z    Compiling lru v0.16.4
2026-08-04T16:24:19.6747618Z    Compiling darling_core v0.23.0
2026-08-04T16:24:19.7030482Z    Compiling serde_bytes v0.11.19
2026-08-04T16:24:19.7690477Z    Compiling seize v0.5.1
2026-08-04T16:24:19.9188925Z    Compiling hmac v0.12.1
2026-08-04T16:24:19.9851042Z    Compiling iroh v0.98.2
2026-08-04T16:24:20.0612610Z    Compiling bitflags v1.3.2
2026-08-04T16:24:20.0939870Z    Compiling rustix v0.38.44
2026-08-04T16:24:20.1003439Z    Compiling dyn-clone v1.0.20
2026-08-04T16:24:20.1504005Z    Compiling pin-utils v0.1.0
2026-08-04T16:24:20.1999262Z    Compiling cmov v0.5.4
2026-08-04T16:24:20.2186630Z    Compiling nix v0.25.1
2026-08-04T16:24:20.2404225Z    Compiling filedescriptor v0.8.3
2026-08-04T16:24:20.2571157Z    Compiling hkdf v0.12.4
2026-08-04T16:24:20.3642257Z    Compiling iroh-dns v0.98.0
2026-08-04T16:24:20.3820525Z    Compiling papaya v0.2.4
2026-08-04T16:24:20.4826439Z    Compiling ctutils v0.4.2
2026-08-04T16:24:20.5220893Z    Compiling serial v0.4.0
2026-08-04T16:24:20.5969979Z    Compiling backon v1.6.0
2026-08-04T16:24:20.6211077Z    Compiling anstyle-parse v1.0.0
2026-08-04T16:24:20.8101004Z    Compiling vte_generate_state_changes v0.1.2
2026-08-04T16:24:20.8152717Z    Compiling anstyle-query v1.1.5
2026-08-04T16:24:20.8263814Z    Compiling anstyle v1.0.14
2026-08-04T16:24:20.8845713Z    Compiling linux-raw-sys v0.4.15
2026-08-04T16:24:20.9062247Z    Compiling instability v0.3.12
2026-08-04T16:24:20.9400275Z    Compiling colorchoice v1.0.5
2026-08-04T16:24:20.9750686Z    Compiling unicode-width v0.2.0
2026-08-04T16:24:21.0255948Z    Compiling downcast-rs v1.2.1
2026-08-04T16:24:21.0699864Z    Compiling is_terminal_polyfill v1.70.2
2026-08-04T16:24:21.1002419Z    Compiling shell-words v1.1.1
2026-08-04T16:24:21.1140739Z    Compiling foldhash v0.1.5
2026-08-04T16:24:21.1380914Z    Compiling anstream v1.0.0
2026-08-04T16:24:21.1447588Z    Compiling vte v0.13.1
2026-08-04T16:24:21.2716902Z    Compiling swarm-discovery v0.6.0-alpha.2 (https://github.com/SaberMage/swarm-discovery?rev=89a2200d54a4e3cab2f46cc75ebff49a1fb07614#89a2200d)
2026-08-04T16:24:21.3170612Z    Compiling hashbrown v0.15.5
2026-08-04T16:24:21.3340920Z    Compiling signal-hook-mio v0.2.5
2026-08-04T16:24:21.4510545Z    Compiling spake2 v0.4.0
2026-08-04T16:24:21.5420486Z    Compiling toml_edit v0.22.27
2026-08-04T16:24:21.5880791Z    Compiling schemars v1.2.1
2026-08-04T16:24:21.7464857Z    Compiling terminal_size v0.4.4
2026-08-04T16:24:21.8844527Z    Compiling strum_macros v0.26.4
2026-08-04T16:24:21.8962364Z    Compiling sha1 v0.10.6
2026-08-04T16:24:21.9185826Z    Compiling itertools v0.13.0
2026-08-04T16:24:22.1430713Z    Compiling castaway v0.2.4
2026-08-04T16:24:22.1510625Z    Compiling doctest-file v1.1.1
2026-08-04T16:24:22.2322971Z    Compiling static_assertions v1.1.0
2026-08-04T16:24:22.2604231Z    Compiling indoc v2.0.7
2026-08-04T16:24:22.3460511Z    Compiling unicode-width v0.1.14
2026-08-04T16:24:22.6530159Z    Compiling clap_lex v1.1.0
2026-08-04T16:24:22.6530942Z    Compiling interprocess v2.4.2
2026-08-04T16:24:22.7228935Z    Compiling crossterm v0.28.1
2026-08-04T16:24:22.7233386Z    Compiling compact_str v0.8.2
2026-08-04T16:24:22.9338647Z    Compiling clap_builder v4.6.0
2026-08-04T16:24:23.6720685Z    Compiling hyper v1.10.1
2026-08-04T16:24:23.6754813Z    Compiling darling_macro v0.23.0
2026-08-04T16:24:23.6900932Z    Compiling lru v0.12.5
2026-08-04T16:24:23.8734620Z    Compiling clap_derive v4.6.1
2026-08-04T16:24:24.0168259Z    Compiling darling v0.23.0
2026-08-04T16:24:24.1340054Z    Compiling unicode-truncate v1.1.0
2026-08-04T16:24:24.2608103Z    Compiling cassowary v0.3.0
2026-08-04T16:24:24.2810605Z    Compiling iana-time-zone v0.1.65
2026-08-04T16:24:24.3540506Z    Compiling nucleo-matcher v0.3.1
2026-08-04T16:24:24.3693877Z    Compiling qrcode v0.14.1
2026-08-04T16:24:24.5319358Z    Compiling toml v0.8.23
2026-08-04T16:24:24.5923471Z    Compiling portable-pty v0.8.1
2026-08-04T16:24:24.6461057Z    Compiling strum v0.26.3
2026-08-04T16:24:24.7791269Z    Compiling chrono v0.4.45
2026-08-04T16:24:24.8074392Z    Compiling ratatui v0.29.0
2026-08-04T16:24:25.1730434Z    Compiling tempfile v3.27.0
2026-08-04T16:24:25.6080925Z    Compiling spt-test-support v0.53.0 (/home/reavus/actions-runner/_work/spt-bs-core/spt-bs-core/crates/spt-test-support)
2026-08-04T16:24:25.7768830Z    Compiling hyper-util v0.1.20
2026-08-04T16:24:25.8941331Z    Compiling spt-msg v0.53.0 (/home/reavus/actions-runner/_work/spt-bs-core/spt-bs-core/crates/spt-msg)
2026-08-04T16:24:26.1311131Z    Compiling clap v4.6.1
2026-08-04T16:24:26.2731187Z    Compiling spt-runtime v0.53.0 (/home/reavus/actions-runner/_work/spt-bs-core/spt-bs-core/crates/spt-runtime)
2026-08-04T16:24:26.2828886Z    Compiling spt-term v0.53.0 (/home/reavus/actions-runner/_work/spt-bs-core/spt-bs-core/crates/spt-term)
2026-08-04T16:24:27.7492809Z    Compiling igd-next v0.17.1
2026-08-04T16:24:28.8986635Z    Compiling portmapper v0.16.0
2026-08-04T16:24:29.3340751Z    Compiling spt-live v0.53.0 (/home/reavus/actions-runner/_work/spt-bs-core/spt-bs-core/crates/spt-live)
2026-08-04T16:24:34.0124201Z    Compiling rustls-webpki v0.103.13
2026-08-04T16:24:36.3758818Z    Compiling tokio-rustls v0.26.4
2026-08-04T16:24:36.3761006Z    Compiling rustls-platform-verifier v0.7.0
2026-08-04T16:24:36.3761427Z    Compiling noq-proto v0.17.0
2026-08-04T16:24:36.5139885Z    Compiling hickory-net v0.26.0-beta.4
2026-08-04T16:24:36.5140552Z    Compiling hyper-rustls v0.27.9
2026-08-04T16:24:36.5141024Z    Compiling tokio-websockets v0.13.2
2026-08-04T16:24:36.6366102Z    Compiling reqwest v0.13.4
2026-08-04T16:24:37.5353591Z    Compiling hickory-resolver v0.26.0-beta.4
2026-08-04T16:24:51.2720794Z    Compiling spt-net v0.53.0 (/home/reavus/actions-runner/_work/spt-bs-core/spt-bs-core/crates/spt-net)
2026-08-04T16:24:52.9926521Z    Compiling spt-daemon v0.53.0 (/home/reavus/actions-runner/_work/spt-bs-core/spt-bs-core/crates/spt-daemon)
2026-08-04T16:25:03.4783865Z    Compiling spt v0.53.0 (/home/reavus/actions-runner/_work/spt-bs-core/spt-bs-core/crates/spt)
2026-08-04T16:25:09.5706611Z     Finished `test` profile [unoptimized + debuginfo] target(s) in 1m 09s
2026-08-04T16:25:09.5948302Z      Running tests/n1_pairing.rs (target/debug/deps/n1_pairing-dc213a1dadff6d29)
2026-08-04T16:25:09.5960201Z 
2026-08-04T16:25:09.5960369Z running 1 test
2026-08-04T16:25:15.7915789Z test new_brain_serves_against_old_broker ... ok
2026-08-04T16:25:15.7916104Z 
2026-08-04T16:25:15.7916381Z test result: ok. 1 passed; 0 failed; 0 ignored; 0 measured; 0 filtered out; finished in 6.20s
2026-08-04T16:25:15.7917405Z 
